home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / amos / amoslist-0195.lzh / AMOSLIST / text0046.txt < prev    next >
Encoding:
Text File  |  1995-02-01  |  1.1 KB  |  42 lines

  1. I just installed the Turbo Plus extension from the August 94 issue of CU, 
  2. but my problem is that I have no idea of the syntax of most of the 
  3. commands.  The ones I'm most interested in are the Plane commands.  I 
  4. assume that Plane Offset works like Screen Offset, but it doesn't seem to 
  5. do anything.
  6.  
  7. I ran the following program :
  8.  
  9. Curs Off : Flash Off : Paper 0 : Cls
  10. For R=100 To 10 Step -5
  11.    Inc A
  12.    Ink A
  13.    Circle 160,100,R
  14.    Paint 160,100
  15. Next
  16. Do
  17.    Add Q,1,1 To 100
  18.    Plane Offset 0,1,Q,0
  19.    Wait Vbl
  20. Loop
  21.  
  22. And all it did was draw the circles and then sit there...
  23.  
  24. So, is the format of Plane Offset
  25.  
  26. Plane Offset screen#,plane#,xoff,yoff
  27.  
  28. and if so, why didn't it do anything?
  29.  
  30. (And how do I use the starfield thing, and why doesn't the 
  31. LightSpeed.AMOS demo work?  It just causes a System Failure (8000 0003))
  32.  
  33. Thanks!
  34.  
  35. --
  36. GCS -d+ H+ s++:- g+ p? !au a- w+++            !Productions 1995
  37. v* C+++ UB+++A++++ P++ L++ E+ N+++       http://satelnet.org/~mentat/
  38. K+ !W--- M-- V po- Y+ t++ 5+ jx G?
  39. R tv++ D- B--- e+ u** h f r++ !n y+ "No matter where you go, there you are."
  40.  
  41.  
  42.